home *** CD-ROM | disk | FTP | other *** search
- @echo off
- echo.
- echo *****************************
- echo * XXCOPY UNINSTALL SCRIPT *
- echo *****************************
- echo.
- echo This batch script will delete the following files from this directory
- echo.
- echo XXCOPY.EXE ; A 32-bit version for Windows 95/98
- echo XXPBAR.EXE ; The Progress Bar display module
- echo XXCOPY16.EXE ; A 16-bit version for DOS
- echo UIXXCOPY.BAT ; this file
- echo.
- echo Are you ready to delete XXCOPY.EXE from the current directory
- echo If not, press Ctrl-Break to terminate this batch script
- echo To continue, press any other key now.
- pause >nul
- echo.
- echo del XXCOPY.EXE
- del XXCOPY.EXE
- echo Are you ready to delete XXPBAR.EXE from the current directory
- echo If not, press Ctrl-Break to terminate this batch script
- echo To continue, press any other key now.
- pause >nul
- echo.
- echo del XXPBAR.EXE
- del XXPBAR.EXE
- echo Are you ready to delete XXCOPY16.EXE from the current directory
- echo If not, press Ctrl-Break to terminate this batch script
- echo To continue, press any other key now.
- pause >nul
- echo.
- echo del XXCOPY16.EXE
- del XXCOPY16.EXE
- echo Are you ready to delete UIXXCOPY.BAT from the current directory
- echo If not, press Ctrl-Break to terminate this batch script
- echo To continue, press any other key now.
- pause >nul
- echo.
- echo del UIXXCOPY.BAT
- echo.
- echo Uninstall XXCOPY complete.
- echo.
- del UIXXCOPY.BAT
-